home *** CD-ROM | disk | FTP | other *** search
- /*
- * Name: GOPXEDII XEDIT (was ITEMINFO XEDIT)
- * display gopher "item info" in the XEDIT message area
- * Author: Rick Troth, Rice University, Information Systems
- * Date: 1992-Dec-10
- *
- * This macro is part of CMS Gopher.
- */
-
- Parse Source . . . . . arg0 .
-
- 'COMMAND CMS GLOBALV SELECT GOPHER GET PROGID'
- If progid = "" Then Do
- /* You're not running CMS Gopher */
- 'COMMAND CMS XMITMSG 542 ARG0 (VAR'
- 'EMSG' message.1
- Exit
- End
-
- 'COMMAND CMS GLOBALV SELECT GOPHER GET ITEM'
- Parse Var item . '05'x path '05'x host '05'x port '05'x .
- If host ^= "" & port ^= "" & path ^= "" Then
- 'COMMAND MSG' host || ':' || port || ':' || path
-
- Exit
-
-